:root {
    --yellow: #f6c382;
    --purple: #7e5084;
    --pink: #c9829c;
    --white: #fcf7f7;
    --black: #252422;
    --randbanner: url("assets/banner1.png");
    /* COLORS */
    --cred: #841c26;
    --corange: #ee7b30;
    --cyellow: #f8c630;
    --cgreen: #6bab90;
    --cblue: #759fbc;
    --cpurple: #90417c;
    --cbrown: #493b2a;
    --cgray: #b4b4b4;
}
*::selection {
  background: var(--pink);
  color: #ffffff;
}
*::-moz-selection {
  background: var(--pink);
  color: #ffffff;
}
*::-webkit-selection {
  background: var(--pink);
  color: #ffffff;
}
body {
    background:
        linear-gradient(
                to bottom,
                rgba(0, 0, 0, 0),
                rgba(167, 107, 124, 0.2),
                rgba(167, 107, 124, 0.8),
                rgba(167, 107, 124, 1)
            )
            no-repeat fixed,
        url("assets/bg.jpg") repeat fixed left top;
    background-color: var(--white);
    color: var(--black);
    font-family: "BricolageGrotesque", sans-serif;
}
hr {
    border-color: var(--pink);
    border-style: dashed;
    border-width: 1px;
    margin: 1em;
}
::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}
::-webkit-scrollbar-track {
    background: var(--white);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    background: var(--pink);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--pink);
}
#nbox {
    background: linear-gradient(to bottom, var(--pink), var(--white));
    border: 3px solid var(--black);
    border-radius: 20px;
}
#bgg {
    background: url(assets/grid.png) 50px;
    border-radius: 20px;
    border: solid 2px var(--purple);
}
.page {
    background-color: var(--white);
    border-color: var(--purple);
    border-width: 3px;
    border-style: solid;
}
#navbox a {
    text-decoration: none;
    color: var(--black);
    border-radius: 2px;
    text-align: right;
    background:
        linear-gradient(to right, rgba(0, 0, 0, 0) 70%, #fcf7f7, #fcf7f7, #fcf7f7 99.5%) no-repeat fixed,
        url("assets/grid.png") repeat fixed left top;
    border-right: 2px solid var(--purple);
    border-top: 2px solid var(--purple);
    border-bottom: 2px solid var(--purple);
}
.innerpage {
    background-color: var(--white);
    border-color: var(--pink);
    border-width: 2px;
    border-style: solid;
}
.cardcont > img {
    transition: 0.05s ease-out;
}
.cardcont > img:hover {
    transform: scale(1.5) rotate(5deg);
    z-index: 1;
    filter: drop-shadow(5px 5px 5px var(--black));
}
.inlinks > a:nth-child(odd) {
    color: var(--black);
    text-decoration: none;
    opacity: 0.8;
    min-height: 1em;
    font-size: 0.9em;
    text-align: center;
    background-color: var(--pink);
    transition: 0.2s;
    border-bottom: var(--purple) 2px solid;
}
.inlinks > a:nth-child(even) {
    color: var(--black);
    text-decoration: none;
    opacity: 0.8;
    min-height: 1em;
    font-size: 0.9em;
    text-align: center;
    background-color: var(--pink);
    transition: 0.2s;
    border-bottom: var(--purple) 2px solid;
}
.inlinks > a:hover {
    color: var(--white);
    background-color: var(--pink);
    opacity: 1;
    transform: translateX(9px) translateY(-2px);
    border-bottom: var(--pink) 2px solid;
}
#noticeBox {
    color: var(--black);
    background-color: var(--yellow);
    border-radius: 10px;
    border: 2px double var(--yellow);
}
.crayonbox {
    border: 2px dashed var(--white);
    background: linear-gradient(to bottom, #db6588, rgba(255, 105, 180, 0.32));
    color: var(--purple);
    font-size: 0.8em;
    border-radius: 50px;
    box-shadow: -2px 2px 3px;
    transition: 0.1s;
}
.crayonbox:hover {
    transform: translateX(-2px) translateY(2px);
    box-shadow: 0 0 2px;
}
.boxTitle {
    background-color: var(--pink);
    color: var(--white);
    text-align: center;
    border: 2px var(--purple) solid;
    border-radius: 5px;
}
#tradeBanner {
    background: url(assets/tradebanner.png) no-repeat center;
    background-size: cover;
    height: 100px;
    position: relative;
}
#monoFolio > span,
#rainbowFolio > span,
#current > span,
#completed > span,
#sigspan,
.crayonbox > span {
    font-size: 0.85em;
    margin: 2px 0;
}
.foliolist {
    border-radius: 10px;
    font-size: 0.8em;
    background-color: var(--pink);
    text-align: left;
    margin-top: 3px;
}
.folioDrop {
    color: var(--darkest);
    text-align: center;
}
.folioDrop {
    padding: 3px 0;
    margin-bottom: 5px;
    margin-top: -5px;
    transition: 1.5s cubic-bezier(0, 0.83, 0, 0.99);
}
.folioDrop:hover {
    margin-bottom: 0;
    margin-top: 0;
}
.folioDrop > span {
    padding: 4px;
    font-size: 0.8em;
    color: var(--black);
    background-color: var(--pink);
    border-radius: 0 0 10px 10px;
    letter-spacing: normal;
    transition: 1.5s cubic-bezier(0, 0.83, 0, 0.99);
}
.folioDrop:hover > span {
    font-size: 1em;
    color: var(--white);
    letter-spacing: 1px;
    border-radius: 0;
}
#rainbowFolio > img {
    border: 5px solid var(--pink);
    border-radius: 3px;
}
#monoFolio > img {
    border: 5px solid var(--pink);
    border-radius: 3px;
}
h1,
h2,
h3,
h4 {
    text-align: center;
    color: var(--black);
    font-weight: 200;
     font-family: 'FuturaHandwritten';
}

#profilepic {
    transition: 0.3s;
}
#profilepic:hover {
    transform: rotate(10deg);
}
#toMasterBox {
    background-color: var(--pink);
    color: var(--black);
}
#masterBox > img {
    transition: 0.1s;
    z-index: 0;
    position: relative;
    filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0));
}
#masterBox > img:hover {
    transform: rotate(7deg) scale(1.2);
    z-index: 2;
    filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.52));
}

.deckcont > a {
    text-decoration: none;
    text-align: center;
}
.deckcont > a > span {
    font-family: "FuturaHandwritten";
    font-weight: bold;
    text-decoration: underline wavy;
    padding-bottom: 3px;
    &:hover {
        letter-spacing: 5px;
    }
}

.red {
    border: 2px solid var(--cred);
    background: url(assets/redbg.jpg) repeat;
    background-size: 70px;
    & a > span {
        background: var(--white);
        color: var(--cred);
        transition: 0.5s;
        &:hover {
            text-shadow: 0 0 3px var(--cred);
        }
    }
}
.orange {
    border: 2px solid var(--corange);
    background: url(assets/orangebg.png) repeat;
    background-size: 70px;
    & a > span {
        background: var(--white);
        color: var(--corange);
        transition: 0.5s;
        &:hover {
            text-shadow: 0 0 3px var(--corange);
        }
    }
}
.yellow {
    border: 2px solid var(--cyellow);
    background: url(assets/yellowbg.png) repeat;
    background-size: 70px;
    & a > span {
        background: var(--white);
        color: var(--cyellow);
        transition: 0.5s;
        &:hover {
            text-shadow: 0 0 3px var(--cyellow);
        }
    }
}
.green {
    border: 2px solid var(--cgreen);
    background: url(assets/greenbg.png) repeat;
    background-size: 70px;
    & a > span {
        background: var(--white);
        color: var(--cgreen);
        transition: 0.5s;
        &:hover {
            text-shadow: 0 0 3px var(--cgreen);
        }
    }
}
.blue {
    border: 2px solid var(--cblue);
    background: url(assets/bluebg.png) repeat;
    background-size: 70px;
    & a > span {
        background: var(--white);
        color: var(--cblue);
        transition: 0.5s;
        &:hover {
            text-shadow: 0 0 3px var(--cblue);
        }
    }
}
.purple {
    border: 2px solid var(--cpurple);
    background: url(assets/purplebg.png) repeat;
    background-size: 70px;
    & a > span {
        background: var(--white);
        color: var(--cpurple);
        transition: 0.5s;
        &:hover {
            text-shadow: 0 0 3px var(--cpurple);
        }
    }
}
.brown {
    border: 2px solid var(--cbrown);
    background: url(assets/brownbg.png) repeat;
    background-size: 70px;
    & a > span {
        background: var(--white);
        color: var(--cbrown);
        transition: 0.5s;
        &:hover {
            text-shadow: 0 0 3px var(--cbrown);
        }
    }
}
.gray {
    border: 2px solid var(--cgray);
    background: url(assets/graybg.png) repeat;
    background-size: 70px;
    & a > span {
        background: var(--white);
        color: var(--cgray);
        transition: 0.5s;
        &:hover {
            text-shadow: 0 0 3px var(--cgray);
        }
    }
}
.special, .n\/a {
    border: 2px solid;
    border-image: linear-gradient(
            to bottom,
            var(--cred),
            var(--corange),
            var(--cyellow),
            var(--cgreen),
            var(--cblue),
            var(--cpurple),
            var(--cbrown),
            var(--cgray)
        )
        1;
    background: url(assets/specialbg.png) repeat;
    background-size: 150px;
    & a > span {
        background: var(--white);
        color: var(--pink);
        transition: 0.5s;
        &:hover {
            text-shadow: 0 0 3px var(--purple);
        }
    }
}
#collectiontabs > a {
    cursor: pointer;
    background: var(--pink);
    background-size: 15px;
    color: var(--white);
    box-shadow: 1px 1px 3px var(--black);
    transition: 0.5s;
    border: 1.7px dashed var(--purple);
    text-decoration: none;
}

#collectiontabs > a:hover,
#collectiontabs > a#collecta:hover {
    opacity: 1;
}

#collectiontabs > a#collecta {
    opacity: 1;
}

#dupetext, textarea {
    background: url(assets/linedbg.png) local;
    background-size: 16.5px;
    line-height: 16.5px;
    border: 1.7px dashed var(--pink);
    resize: none;
}
#head {
    text-align: center;
    width: 80%;
}
.pola {
    position: relative;
    border: solid transparent;
    height: max-content;
    width: max-content;
    border-image-source: url(assets/portrait.png);
    border-width: 12px 6px 28px 6px;
    border-image-slice: 12 6 28 6;
    border-image-repeat: stretch;
    padding: 0;
    filter: drop-shadow(1px 1px 3px black);
}
.pola > img {
    display: block;
}
.pola > .deco {
    position: absolute;
    filter: drop-shadow(0 0 2px black);
    user-select: none;
    pointer-events: none;
}
.nbmidcont {
  position: relative;
 height: 97%;
 margin-top: 3%;
 width: 3%;
 max-width: 20px;
 overflow: visible;
 user-select: none;
 pointer-events: none;
 justify-content: space-around;
 align-items: center;
 display: flex;
 flex-flow: column wrap; 
}

